Link bookmarking tool built on aproto (early alpha)
at main 961 B view raw
1import { A } from "@solidjs/router" 2 3export default function NotFound() { 4 return ( 5 <main class="text-center mx-auto text-gray-700 p-4"> 6 <h1 class="max-6-xs text-6xl text-sky-700 font-thin uppercase my-16"> 7 Not Found 8 </h1> 9 <p class="mt-8"> 10 Visit{" "} 11 <a 12 href="https://solidjs.com" 13 target="_blank" 14 class="text-sky-600 hover:underline" 15 > 16 solidjs.com 17 </a>{" "} 18 to learn how to build Solid apps. 19 </p> 20 <p class="my-4"> 21 <A href="/" class="text-sky-600 hover:underline"> 22 Home 23 </A> 24 {" - "} 25 <A href="/about" class="text-sky-600 hover:underline"> 26 About Page 27 </A> 28 </p> 29 </main> 30 ) 31}